home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / DTS QT Utilities.Aug-95 / Projects & Test Apps / DigitizerShell / Mac Framework / MacApplication.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-30  |  570 b   |  35 lines  |  [TEXT/MPCC]

  1. /*
  2.     File:        MacApplication.h
  3.  
  4.     Contains:    Digitizer Shell specific functions concerning the application shell.
  5.  
  6.     Written by:    DTS
  7.  
  8.     Copyright:    © 1994-1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.        <1>             4/25/95    khs        first file
  13.        
  14. */
  15.  
  16.  
  17. #pragma once
  18.  
  19.  
  20. // APPLICATION SPECIFIC ENUMS
  21. // MENUS
  22. enum eAppMenus {
  23.     mTesting = 131, mCaptureSize = 132
  24. };
  25.  
  26. enum eTestingMenu {
  27.     iTest1 = 1, iTest2, iTest3, iTest4, iTest5, iTest6, iTest7, iTest8, iTest9, iTest10
  28. };
  29.  
  30. enum eCaptureSizeVars {
  31.     iSizeNormal = 1, iSizeSmall, iSizeBig
  32. };
  33.  
  34.  
  35.